home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 273_01 / locate.cc < prev    next >
Text File  |  1987-09-26  |  231b  |  10 lines

  1. #include <dos.h>
  2. locate(int row, int col)
  3. /* Position the cursor at row,col */
  4. {
  5.         union REGS inregs;
  6.         inregs.h.ah=2; inregs.h.dh=row; inregs.h.dl=col;
  7.         inregs.h.bh=0;
  8.         int86(0x10,&inregs,&inregs);
  9. }
  10.